找传奇、传世资源到传世资源站!

C#TCP网络通讯

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】C#TCP网络通讯

【相关图片】

from clipboard

from clipboard

【源码结构】

.
├── Accounts
│   ├── AccountsClient
│   │   ├── AccountsClient
│   │   │   ├── AccountAdd.Designer.cs
│   │   │   ├── AccountAdd.cs
│   │   │   ├── AccountAdd.resx
│   │   │   ├── AccountList.Designer.cs
│   │   │   ├── AccountList.cs
│   │   │   ├── AccountList.resx
│   │   │   ├── AccountReport.Designer.cs
│   │   │   ├── AccountReport.cs
│   │   │   ├── AccountReport.resx
│   │   │   ├── AccountsClient.csproj
│   │   │   ├── AccountsClient.csproj.user
│   │   │   ├── App.config
│   │   │   ├── Common.cs
│   │   │   ├── DictionaryAdd.Designer.cs
│   │   │   ├── DictionaryAdd.cs
│   │   │   ├── DictionaryAdd.resx
│   │   │   ├── DictionaryList.Designer.cs
│   │   │   ├── DictionaryList.cs
│   │   │   ├── DictionaryList.resx
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Form_OutAdd.Designer.cs
│   │   │   ├── Form_OutAdd.cs
│   │   │   ├── Form_OutAdd.resx
│   │   │   ├── Form_OutandIn.Designer.cs
│   │   │   ├── Form_OutandIn.cs
│   │   │   ├── Form_OutandIn.resx
│   │   │   ├── Login.Designer.cs
│   │   │   ├── Login.cs
│   │   │   ├── Login.resx
│   │   │   ├── Main.Designer.cs
│   │   │   ├── Main.cs
│   │   │   ├── Main.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   └── toolbtnDel.Image.png
│   │   │   ├── SendMessage.cs
│   │   │   ├── Syslog.Designer.cs
│   │   │   ├── Syslog.cs
│   │   │   ├── Syslog.resx
│   │   │   ├── SystemLog.cs
│   │   │   ├── USERModel.cs
│   │   │   ├── UpdatePwd.Designer.cs
│   │   │   ├── UpdatePwd.cs
│   │   │   ├── UpdatePwd.resx
│   │   │   ├── UserAdd.Designer.cs
│   │   │   ├── UserAdd.cs
│   │   │   ├── UserAdd.resx
│   │   │   ├── UserList.Designer.cs
│   │   │   ├── UserList.cs
│   │   │   ├── UserList.resx
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── AccountsClient.exe.config
│   │   │   │       ├── AccountsClient.vshost.exe
│   │   │   │       ├── AccountsClient.vshost.exe.config
│   │   │   │       ├── AccountsStand.exe.config
│   │   │   │       ├── AccountsStand.vshost.exe.config
│   │   │   │       ├── IrisSkin2.dll
│   │   │   │       ├── OneBlue.ssk
│   │   │   │       └── WarmColor2.ssk
│   │   │   └── obj
│   │   │       └── x86
│   │   │           └── Debug
│   │   │               ├── AccountsClient.csproj.FileListAbsolute.txt
│   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │               ├── GenerateResource.read.1.tlog
│   │   │               ├── GenerateResource.write.1.tlog
│   │   │               ├── ResolveAssemblyReference.cache
│   │   │               └── TempPE
│   │   │                   └── Properties.Resources.Designer.cs.dll
│   │   ├── AccountsClient.suo
│   │   ├── AccountsStand.sln
│   │   └── AccountsStand.suo
│   ├── AccountsServer
│   │   ├── AccountsServer
│   │   │   ├── AccountsServer.csproj
│   │   │   ├── AccountsServer.csproj.user
│   │   │   ├── App.config
│   │   │   ├── App_Code
│   │   │   │   ├── SqlHelper.cs
│   │   │   │   ├── SystemLog.cs
│   │   │   │   └── USERModel.cs
│   │   │   ├── ClientTcp.cs
│   │   │   ├── Common.cs
│   │   │   ├── DB
│   │   │   │   ├── AccountsDB.accdb
│   │   │   │   ├── AccountsDB.ldb
│   │   │   │   ├── AccountsDB.mdb
│   │   │   │   └── AccountsDB2.mdb
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Resources
│   │   │   │   └── toolbtnDel.Image.png
│   │   │   ├── Syslog.Designer.cs
│   │   │   ├── Syslog.cs
│   │   │   ├── Syslog.resx
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │       ├── AccountsServer.exe.config
│   │   │   │       ├── AccountsServer.vshost.exe
│   │   │   │       ├── AccountsServer.vshost.exe.config
│   │   │   │       └── AccountsServer.vshost.exe.manifest
│   │   │   └── obj
│   │   │       └── x86
│   │   │           └── Debug
│   │   │               ├── AccountsServer.csproj.FileListAbsolute.txt
│   │   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │               ├── GenerateResource.read.1.tlog
│   │   │               ├── GenerateResource.write.1.tlog
│   │   │               ├── ResolveAssemblyReference.cache
│   │   │               └── TempPE
│   │   │                   └── Properties.Resources.Designer.cs.dll
│   │   ├── AccountsServer.sln
│   │   └── AccountsServer.v12.suo
│   └── AccountsWindowsService
│       ├── AccountsWindowsService
│       │   ├── AccountsWindowsService.csproj
│       │   ├── AccountsWindowsService.csproj.user
│       │   ├── AccountsWindowsService.suo
│       │   ├── App.config
│       │   ├── App_Code
│       │   │   ├── SqlHelper.cs
│       │   │   ├── SystemLog.cs
│       │   │   └── USERModel.cs
│       │   ├── ClassDiagram1.cd
│       │   ├── ClientTcp.cs
│       │   ├── Common.cs
│       │   ├── DB
│       │   │   ├── AccountsDB.accdb
│       │   │   └── AccountsDB2.mdb
│       │   ├── Program.cs
│       │   ├── ProjectInstaller.Designer.cs
│       │   ├── ProjectInstaller.cs
│       │   ├── ProjectInstaller.resx
│       │   ├── Properties
│       │   │   └── AssemblyInfo.cs
│       │   ├── ServerService.Designer.cs
│       │   ├── ServerService.cs
│       │   ├── bin
│       │   │   └── Debug
│       │   │       ├── AccountsWindowsService.InstallLog
│       │   │       ├── AccountsWindowsService.exe
│       │   │       ├── AccountsWindowsService.exe.config
│       │   │       ├── AccountsWindowsService.pdb
│       │   │       ├── AccountsWindowsService.vshost.exe
│       │   │       ├── AccountsWindowsService.vshost.exe.config
│       │   │       └── AccountsWindowsService.vshost.exe.manifest
│       │   └── obj
│       │       └── x86
│       │           └── Debug
│       │               ├── AccountsWindowsService.ProjectInstaller.resources
│       │               ├── AccountsWindowsService.csproj.FileListAbsolute.txt
│       │               ├── AccountsWindowsService.exe
│       │               ├── AccountsWindowsService.pdb
│       │               ├── DesignTimeResolveAssemblyReferences.cache
│       │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │               ├── GenerateResource.read.1.tlog
│       │               ├── GenerateResource.write.1.tlog
│       │               ├── ResolveAssemblyReference.cache
│       │               └── TempPE
│       ├── AccountsWindowsService.sln
│       └── AccountsWindowsService.v12.suo
└── C#TCP网络通讯_Accounts.rar

34 directories, 150 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复